//
var TN_Widget = function() {
return {
//Options
newWindow : true,
linkText : "view
tickets",
tixUrl : "http://www.ticketnetwork.com/tix/",
trackingParams : "",
custLink : true,
//depricated
kbid : "",
//Overwrittable functions
trackingLink :"",
CreateCustomUrl : function(row) {
return this.tixUrl + row[7] + "-tickets-"+ row[6] + ".aspx";
},
CreateEventRow : function(row, isAlt) {
return "
" +
row[0] +" | " +
row[1] +" " +
row[2] +" | " +
row[3] +" " +
row[4] + " " +
row[5] + " | "+ this.linkText+ " |
";
},
AddCss: function(cssUrl) {
var fileref=document.createElement("link");
fileref.setAttribute("rel", "stylesheet");
fileref.setAttribute("type", "text/css");
fileref.setAttribute("href", cssUrl);
document.getElementsByTagName("head")[0].appendChild(fileref);
},
CreateTable : function(eventData,kywrds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
if(this.kbid != "")
this.trackingParams = "?img=249&kbid="+this.kbid;
var newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newTable.join('') + '
';
} else
document.write('' + newTable.join('') + '
');
if(eventData.length >= 100 && kywrds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
if(eventData.length > 0) {
document.getElementById("previewNote").style.display = "none";
}
}
};
}();
//BPW-TNSERV-02A
TN_Widget.CreateTable([['National Geographic Live: The Untold Story of Sharks - Jess Cramp','Meyerhoff Symphony Hall','Baltimore, MD','Thursday','7/10/2025','7:00 PM','7209384','National-Geographic-Live--The-Untold-Story-of-Sharks---Jess-Cramp-7-10-2025'],['Baltimore Symphony Orchestra: Jaws in Concert','Meyerhoff Symphony Hall','Baltimore, MD','Saturday','7/12/2025','7:30 PM','7209382','Baltimore-Symphony-Orchestra--Jaws-in-Concert-7-12-2025'],['Baltimore Symphony Orchestra: Jaws in Concert','Meyerhoff Symphony Hall','Baltimore, MD','Sunday','7/13/2025','3:00 PM','7209383','Baltimore-Symphony-Orchestra--Jaws-in-Concert-7-13-2025'],['Baltimore Symphony Orchestra: Harry Potter Family Day','Meyerhoff Symphony Hall','Baltimore, MD','Saturday','7/26/2025','11:00 AM','7209381','Baltimore-Symphony-Orchestra--Harry-Potter-Family-Day-7-26-2025'],['Baltimore Symphony Orchestra: Tchaikovsky Spectacular','Meyerhoff Symphony Hall','Baltimore, MD','Saturday','8/2/2025','7:30 PM','7209386','Baltimore-Symphony-Orchestra--Tchaikovsky-Spectacular-8-2-2025'],['Baltimore Symphony Orchestra: Simply Charming Mozart','Meyerhoff Symphony Hall','Baltimore, MD','Saturday','8/9/2025','7:30 PM','7209385','Baltimore-Symphony-Orchestra--Simply-Charming-Mozart-8-9-2025'],['Candlelight: Tribute to Adele','Meyerhoff Symphony Hall','Baltimore, MD','Wednesday','10/15/2025','6:30 PM','7151965','Candlelight--Tribute-to-Adele-10-15-2025'],['Leslie Odom Jr.','Meyerhoff Symphony Hall','Baltimore, MD','Saturday','11/29/2025','7:30 PM','7233506','Leslie-Odom-Jr--11-29-2025']],'Meyerhoff Symphony Hall','http://www.ticketnetwork.com/ticket/Meyerhoff-Symphony-Hall-events.aspx');